0763b7cd90e4ebebfcd550ce0710e0f7480fc27d,clc/modules/msgs/src/main/java/com/eucalyptus/event/SystemClock.java,HzClock,run,#,200
Before Change
public void run( ) {
Thread.currentThread( ).setUncaughtExceptionHandler( ( UncaughtExceptionHandler ) this );
try {
ListenerRegistry.getInstance( ).fireEventAsync( Hertz.class, new Hertz( ) ).get( SystemClock.EVENT_TIMEOUT, TimeUnit.MILLISECONDS );
} catch ( Exception t ) {
LOG.error( t, t );
}
After Change
public void run( ) {
Thread.currentThread( ).setUncaughtExceptionHandler( ( UncaughtExceptionHandler ) this );
try {
ListenerRegistry.getInstance( ).fireEvent( Hertz.class, new Hertz( ) );
} catch ( Exception t ) {
LOG.error( t, t );
}